home *** CD-ROM | disk | FTP | other *** search
/ Freelog 117 / FreelogNo117-OctobreNovembre2013.iso / Programmation / jedit / jedit5.1.0install.exe / {app} / macros / Emacs / Emacs_Backward_Sentence.bsh < prev    next >
Text File  |  2013-07-28  |  303b  |  14 lines

  1. /**
  2.  * Go to the beginning of the current sentence. Emulates the Emacs
  3.  * "backward-sentence" command.
  4.  */
  5.  
  6. source (MiscUtilities.constructPath(dirname(scriptPath), "EmacsUtil.bsh"));
  7.  
  8. void emacsBackwardSentence()
  9. {
  10.     textArea.setCaretPosition (findBeginningOfSentence());
  11. }
  12.  
  13. emacsBackwardSentence();
  14.